changing wfQuery to allow replication
[lhc/web/wiklou.git] / includes / DatabaseFunctions.php
1 <?
2 global $IP;
3 include_once( "$IP/FulltextStoplist.php" );
4 include_once( "$IP/CacheManager.php" );
5
6 define( "DB_READ", -1 );
7 define( "DB_WRITE", -2 );
8
9 $wgLastDatabaseQuery = "";
10
11 function wfGetDB( $altuser = "", $altpassword = "", $altserver = "", $altdb = "" )
12 {
13 global $wgDBserver, $wgDBuser, $wgDBpassword;
14 global $wgDBname, $wgDBconnection, $wgEmergencyContact;
15
16 $noconn = str_replace( "$1", $wgDBserver, wfMsg( "noconnect" ) );
17 $nodb = str_replace( "$1", $wgDBname, wfMsg( "nodb" ) );
18
19 $helpme = "\n<p>If this error persists after reloading and clearing " .
20 "your browser cache, please notify the <a href=\"mailto:" .
21 $wgEmergencyContact . "\">Wikipedia developers</a>.</p>";
22
23 if ( $altuser != "" ) {
24 $serve = ($altserver ? $altserver : $wgDBserver );
25 $db = ($altdb ? $altdb : $wgDBname );
26 $wgDBconnection = mysql_connect( $serve, $altuser, $altpassword )
27 or die( "bad sql user" );
28 mysql_select_db( $db, $wgDBconnection ) or die(
29 htmlspecialchars(mysql_error()) );
30 }
31
32 if ( ! $wgDBconnection ) {
33 @$wgDBconnection = mysql_pconnect( $wgDBserver, $wgDBuser, $wgDBpassword )
34 or wfEmergencyAbort();
35
36 if( !mysql_select_db( $wgDBname, $wgDBconnection ) ) {
37 /* Persistent connections may become stuck in an unusable state */
38 wfDebug( "Persistent connection is broken?\n", true );
39
40 @$wgDBconnection = mysql_connect( $wgDBserver, $wgDBuser, $wgDBpassword )
41 or wfEmergencyAbort();
42
43 @mysql_select_db( $wgDBname, $wgDBconnection )
44 or wfEmergencyAbort();
45 }
46 }
47 # mysql_ping( $wgDBconnection );
48 return $wgDBconnection;
49 }
50
51 /* Call this function if we couldn't contact the database...
52 We'll try to use the cache to display something in the meantime */
53 function wfEmergencyAbort( $msg = "" ) {
54 global $wgTitle, $wgUseFileCache, $title, $wgOutputEncoding;
55
56 header( "Content-type: text/html; charset=$wgOutputEncoding" );
57 if($msg == "") $msg = wfMsg( "noconnect" );
58 $text = $msg;
59
60 if($wgUseFileCache) {
61 if($wgTitle) {
62 $t =& $wgTitle;
63 } else {
64 if($title) {
65 $t = Title::newFromURL( $title );
66 } else {
67 $t = Title::newFromText( wfMsg("mainpage") );
68 }
69 }
70
71 $cache = new CacheManager( $t );
72 if( $cache->isFileCached() ) {
73 $msg = "<p style='color: red'><b>$msg<br>\n" .
74 wfMsg( "cachederror" ) . "</b></p>\n";
75
76 $tag = "<div id='article'>";
77 $text = str_replace(
78 $tag,
79 $tag . $msg,
80 $cache->fetchPageText() );
81 }
82 }
83
84 /* Don't cache error pages! They cause no end of trouble... */
85 header( "Cache-control: none" );
86 header( "Pragma: nocache" );
87 echo $text;
88 exit;
89 }
90
91 # $db: DB_READ = -1 read from slave (or only server)
92 # DB_WRITE = -2 write to master (or only server)
93 # 0,1,2,... query a database with a specific index
94 # Replication is not actually implemented just yet
95 function wfQuery( $sql, $db, $fname = "" )
96 {
97 global $wgLastDatabaseQuery, $wgOut;
98 ## wfProfileIn( "wfQuery" );
99 $wgLastDatabaseQuery = $sql;
100
101 $conn = wfGetDB();
102 $ret = mysql_query( $sql, $conn );
103
104 if ( "" != $fname ) {
105 # wfDebug( "{$fname}:SQL: {$sql}\n", true );
106 } else {
107 # wfDebug( "SQL: {$sql}\n", true );
108 }
109 if ( false === $ret ) {
110 $wgOut->databaseError( $fname );
111 exit;
112 }
113 ## wfProfileOut();
114 return $ret;
115 }
116
117 function wfFreeResult( $res ) { mysql_free_result( $res ); }
118 function wfFetchObject( $res ) { return mysql_fetch_object( $res ); }
119 function wfNumRows( $res ) { return mysql_num_rows( $res ); }
120 function wfNumFields( $res ) { return mysql_num_fields( $res ); }
121 function wfFieldName( $res, $n ) { return mysql_field_name( $res, $n ); }
122 function wfInsertId() { return mysql_insert_id( wfGetDB() ); }
123 function wfDataSeek( $res, $row ) { return mysql_data_seek( $res, $row ); }
124 function wfLastErrno() { return mysql_errno(); }
125 function wfLastError() { return mysql_error(); }
126 function wfAffectedRows() { return mysql_affected_rows( wfGetDB() ); }
127
128 function wfLastDBquery()
129 {
130 global $wgLastDatabaseQuery;
131 return $wgLastDatabaseQuery;
132 }
133
134 function wfSetSQL( $table, $var, $value, $cond )
135 {
136 $sql = "UPDATE $table SET $var = '" .
137 wfStrencode( $value ) . "' WHERE ($cond)";
138 wfQuery( $sql, DB_WRITE, "wfSetSQL" );
139 }
140
141 function wfGetSQL( $table, $var, $cond )
142 {
143 $sql = "SELECT $var FROM $table WHERE ($cond)";
144 $result = wfQuery( $sql, DB_WRITE, "wfGetSQL" );
145
146 $ret = "";
147 if ( mysql_num_rows( $result ) > 0 ) {
148 $s = mysql_fetch_object( $result );
149 $ret = $s->$var;
150 mysql_free_result( $result );
151 }
152 return $ret;
153 }
154
155 function wfStrencode( $s )
156 {
157 return addslashes( $s );
158 }
159
160 # Ideally we'd be using actual time fields in the db
161 function wfTimestamp2Unix( $ts ) {
162 return gmmktime( ( (int)substr( $ts, 8, 2) ),
163 (int)substr( $ts, 10, 2 ), (int)substr( $ts, 12, 2 ),
164 (int)substr( $ts, 4, 2 ), (int)substr( $ts, 6, 2 ),
165 (int)substr( $ts, 0, 4 ) );
166 }
167
168 function wfUnix2Timestamp( $unixtime ) {
169 return gmdate( "YmdHis", $unixtime );
170 }
171
172 function wfTimestampNow() {
173 # return NOW
174 return gmdate( "YmdHis" );
175 }
176
177 # Sorting hack for MySQL 3, which doesn't use index sorts for DESC
178 function wfInvertTimestamp( $ts ) {
179 return strtr(
180 $ts,
181 "0123456789",
182 "9876543210"
183 );
184 }
185
186 ?>